home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 45 / Amiga Format CD45 (1999-09)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-11].iso / -serious- / misc / mcread / original / makefile < prev    next >
Makefile  |  1999-08-09  |  937b  |  45 lines

  1. # makefile for mcread...
  2.  
  3. CC=cc
  4. # Set the CC variable to the name of your preferred C compiler.
  5.  
  6. CCOPTS=-O
  7. # Set CCOPTS to your usual options, like -O for optimized code, or
  8. # -g for debugging symbols.
  9.  
  10.  
  11. all: main.o macwrite.o mbinary.o wordwrap.o text.o
  12.     $(CC) main.o macwrite.o mbinary.o wordwrap.o text.o -o mcread
  13.     strip mcread
  14.  
  15. main.o: mcread.h main.c
  16.     $(CC) $(CCOPTS) -c main.c
  17.  
  18. macwrite.o: mcread.h macwrite.c
  19.     $(CC) $(CCOPTS) -c macwrite.c
  20.  
  21. text.o: mcread.h text.c
  22.     $(CC) $(CCOPTS) -c text.c
  23.  
  24. mbinary.o: mcread.h mbinary.c
  25.     $(CC) $(CCOPTS) -c mbinary.c
  26.  
  27. wordwrap.o: mcread.h wordwrap.c
  28.     $(CC) $(CCOPTS) -c wordwrap.c
  29.  
  30. clean:
  31.     rm -f *.o
  32.  
  33. shar:
  34.     shar *.c *.h Makefile mcREADME mwformat MACAtest.uu > mcread.shar
  35.     chmod 700 mcread.shar
  36.  
  37. tar:
  38.     uudecode MACAtest.uu
  39.     tar cfv mcread.tar *.c *.h Makefile mcREADME mwformat MACAtest.bin
  40.     rm MACAtest.bin
  41.     compress mcread.tar
  42.     uuencode mcread.tar.Z mcread.tar.Z > mcread.tar.Z.uu
  43.     
  44. # eof
  45.